js-errors
staging:
master:
Exception system with error chaining.
Installation
npm install --save @matrixai/errors
Development
Run nix-shell
, and once you're inside, you can use:
npm install
npm run build
npm run tsx
npm run test
npm run lint
npm run lintfix
Docs Generation
npm run docs
See the docs at: https://matrixai.github.io/js-errors/
Publishing
Publishing is handled automatically by the staging pipeline.
Prerelease:
npm version prepatch --preid alpha
git push --follow-tags
Release:
npm version patch
git push --follow-tags
Manually:
npm version patch
npm run build
npm publish --access public
git push
git push --tags